home *** CD-ROM | disk | FTP | other *** search
/ Cracking 2 / Cracking II..iso / Kompresni & kodovaci programy / ucl-0.91 / acconfig / m4 / gnumake.m4 < prev    next >
Text File  |  1998-04-28  |  663b  |  21 lines

  1. ## --------------------------------------------------------- ##
  2. ## Check for GNU make (do not cache this setting)            ##
  3. ## Adapted from AM_MISSING_PROG and AM_PROG_LD_GNU.          ##
  4. ## --------------------------------------------------------- ##
  5.  
  6. # serial 1
  7.  
  8. dnl mfx_PROG_MAKE_GNU(NAME)
  9. AC_DEFUN(mfx_PROG_MAKE_GNU,
  10. [AC_MSG_CHECKING([whether we are using GNU make])
  11. # Run test in a subshell; some versions of sh will print an error if
  12. # an executable is not found, even if stderr is redirected.
  13. if (${MAKE-make} --version) 2>&1 </dev/null | grep 'GNU' >/dev/null; then
  14.    $1=yes
  15.    AC_MSG_RESULT(yes)
  16. else
  17.    $1=no
  18.    AC_MSG_RESULT(no)
  19. fi
  20. AC_SUBST($1)])
  21.